home *** CD-ROM | disk | FTP | other *** search
- --
- -- DragDropColor
- --
-
- -- this class handles all runtime game management.
-
- -- constants:
- property delaySecs -- the number of seconds we delay before moving on to the next round
-
-
- property ancestor
- property responseFlag
-
- --JCODE
- global gUI
-
- on new me
- -- initialize constants:
- set delaySecs = 1
-
- set ancestor = new (script "DragDropSetUp")
- set responseFlag = TRUE
-
- -- add (the actorList, new (script "ObjectUpdater", me))
- return me
- end
-
-
- on destruct me
- if objectP (ancestor) then destruct (ancestor)
- set ancestor = 0
- end
-
-
- on noResponse me
- set responseFlag = FALSE
- end
-
-
- on initializeRound me
- hideDraggables (me)
- initializeRound (ancestor)
- showDraggables (me)
- showTargets (me)
- initPlay (me)
- end
-
-
- on mouseDown me, spr
- if not isDraggable (me, spr) then return 0
-
- -- drag until release:
- set testSpr = dragSprite (me, spr)
- if testSpr = -1 then return 1 -- drag ended in starting position (exactly)
-
- -- on release of the mouse
- -- check to see if the sprite is overlapping the correct container:
-
- set matchSprite = checkMatch (me, spr, testSpr)
- hideUnderSprite (me)
-
- if matchSprite then
- -- if a match, snap the draggable to position and stick it there.
- snapToPosition (me, spr, matchSprite)
- showDraggable (me, spr) --stickDraggable (me, spr)
- hideTarget (me, matchSprite)
-
- --set the backColor of sprite matchSprite to the foreColor of sprite spr
- --updateStage
-
- moveOffScreen (me, matchSprite)
-
- -- play the good response sound
- if responseFlag then playResponseSound(1, 1)
- -- play the proper "ID" sound
- playSprite (gUI, spr, #ID)
-
- -- move a bar graph if one has been set up:
- moveGraph (me, the name of member the memberNum of sprite matchSprite of castLib the castLibNum of sprite matchSprite)
-
- if not done (me) then
- initPlay (me)
- end if
-
- else
- showDraggable (me, spr)
- -- if no match, then move it back to it's starting position:
- playResponseSound(0, 1)
- end if
-
- return 1
- end
-
-
-
- -- check to see if we are done.
- -- if so, then do an action.
-
- on done me
- if checkDoneTargets (ancestor) then
- wait (me, delaySecs)
- go "finish"
- unloadCast (me)
- return 1
- else
- return 0
- end if
- end
-
-
- on initPlay me
- initHandCursor ("hand", getDraggableList (me))
- end
-